bash shell会将一些称为位置参数的特殊变量分配给输入到命令行中的所有参数,其中
$0
是程序名,$1
是第一个参数,$2
是第二个参数…1234567#!/bin/bashfactorial=1for (( number = 1; number <= $1 ; number++ ))dofactorial=[ factorial * $number ]doneecho The factorial of 1 is factorial12$ ./test1.sh 5The factorial of 5 is 120需要注意的是
factorial=$[ $factorial * $number ]
这一行等号左右不可以有空格。
- 在将文本字符串作为参数传递时,若碰到有空格的文本字符串,需要用引号将文本字符串包起来
读取脚本名:可以用
$0
参数获取shell在命令行启动的脚本名,例如bash test.sh,那么在shell脚本中使用$0
获取到的脚本名为test.sh,但是有一个问题就是使用./test.sh
运行程序时,命令会和脚本名混在一起,例如执行./test.sh
,那么在脚本中$0
获取到的脚本名为./test.sh
,另外一个问题就是当传给$0
变量的实际字符串不仅仅是脚本名,而是完整的脚本路径时,变量$0
就是使用整个路径,例如bash /home/gtp/test.sh
,那么在脚本中获取的值就为/home/gtp/test.sh
,有个命令可以帮我们提取出脚本名称,basename命令会返回不包含路径的脚本名,例如:123456789#!/bin/bashname=(basename 0)if [ $name = "addem" ]thentotal=$[ $1 + $2 ]elif [ $name = "multem" ]thentotal=$[ $1 * $2 ]fi在shell脚本中使用命令行参数如果脚本不加参数运行会报错,所以在脚本中使用命令行参数时一定要先判断:
1234567#!/bin/bashif [ -n "$1" ]thenecho Hello $1, glad to meet you.elseecho "Sorry, you did not identify yourself"fi特殊变量
$#
含有脚本运行时携带的命令行参数的个数,可以在脚本中任何地方使用这个特殊变量,就跟普通变量一样,我们通过如下形式获取到最后一个命令行参数:123456#!/bin/bashparams=$#echoecho The last parameter is $paramsecho The last parameter is ${!#}echo123$ bash test.sh 1 2 3 4 5The last parameter is 5The last parameter is 5123$ bash test.shThe last parameter is 0The last parameter is test.sh$*
和$@
变量可以轻松访问所有的命令行参数,这两个变量都能够在单个变量上存储所有的命令行参数,$*
变量会将命令行上提供的所有参数当作一个单词保存,这个单词包含了命令行上出现的每一个参数值,$*
变量会将这些参数视为一个整体,而不是多个个体;而$@
变量会将命令行上提供的所有参数当作同一字符串中的多个独立的单词,这样就能遍历所有的参数值,得到每一个参数值。123456789101112131415#!/bin/bashechocount=1for param in "$*"doecho "$* Parameter #count = param"count=[ count + 1 ]doneechocount=1for param in "$@"doecho "$@ Paramter #count = param"count=[ count + 1]done123456$ ./test.sh rich barbara katie jessica$* Parameter #1 = rich barbara katie jessica$@ Parameter #1 = rich$@ Parameter #2 = barbara$@ Parameter #3 = katie$@ Parameter #4 = jessica移动变量:shift命令能够用来操作命令行参数,shift命令会根据它们的相对位置来移动命令行参数,在使用shift命令时,默认情况下它会将每个参数变量向左移动一个位置,所以,变量
$3
的值会移到$2
中,变量$2
的值会移到$1
中,而变量$1
的值则会被删除(注意,变量$0
的值,也就是程序名,不会改变)。这是遍历命令行参数的另一种方法,你可以只操作第一个参数,移动参数,然后继续操作第一个参数。123456789#!/bin/bashechocount=1while [ -n "$1" ]doecho "Parameter #$count = $1"count=$[ $count + 1 ]shiftdone123456$$ ./test13.sh rich barbara katie jessicaParameter #1 = richParameter #2 = barbaraParameter #3 = katieParameter #4 = jessica使用shift命令需要注意的是如果某个参数被移出,它的值就被丢弃了,无法再恢复。
你可以使用shift命令来依次处理脚本程序携带的命令行参数,你也可以用同样的方法来处理命令行选项,在提取每个单独参数时,用case语句来判断某个参数是否为选项:
123456789101112#!/bin/bashechowhile [ -n "$1" ]docase "$1" in-a) echo "Found the -a option" ;;-b) echo "Found the -a option" ;;-c) echo "Found the -c option" ;;*) echo "$1 is not an option" ;;esacshiftdone12345$ ./test.sh -a -b -c -dFound the -a optionFound the -b optionFound the -c option-d is not an optionLinux中使用
--
特殊字符将选项和参数分开,shell会用双破折线来表明选项列表结束,在双破折线之后,脚本就可以放心的将剩下的命令行参数当作参数,而不是选项来处理了:123456789101112131415161718192021#!/bin/bashechowhile [ -n "$1" ]docase "$1" in-a) echo "Found the -a option" ;;-b) echo "Found the -b option" ;;-c) echo "Found the -c option" ;;--) shiftbreak ;;*) echo "$1 is not an option" ;;esacshiftdone#count=1for param in $@doecho "Parameter #$count: $param"count=$[ $count + 1 ]done1234567$ ./test16.sh -c -a -b -- test1 test2 test3Found the -c optionFound the -a optionFound the -b optionParameter #1: test1Parameter #2: test2Parameter #3: test3处理带值的选项:有些选项会带上一个额外的参数值,在这种情况下,命令行会类似于下面这种形式:
./test.sh -a -b test1 -c -d test2
,当命令行选项要求额外的参数时,脚本必须能够检测到并正确处理:1234567891011121314151617181920212223#!/bin/bashechowhile [ -n "$1" ]docase "$1" in-a) echo "Found the -a option"-b) param="$2"echo "Found the -b option, with parameter value $param"shift ;;-c) echo "Found the -c option" ;;--) shiftbreak ;;*) echo "$1 is not an option"esacshiftdone#count=1for param in $@doecho "Parameter #$count: $param"count=$[ $count + 1 ]done1234$ ./test.sh -a -b test1 -dFound the -a optionFound the -b option, with parameter value test1-d is not an optiongetopt命令是一个处理命令行选项和参数的命令,它能够识别命令行参数,getopt命令可以接受一系列任意形式的命令行选项和参数,并自动将它们转换成适当的形式,它的命令形式如下:
getopt optstring parameters
。optstring定义了命令行有效的选项字母,还定义了哪些选项字母需要参数值,在optstring中列出你要在脚本中用到的每个命令行选项字母,然后在每个需要参数值的选项字母后加一个冒号,getopt命令会基于你定义的optstring解析提供的参数
12$ getopt ab:cd -a -b test1 -cd test2 test3a -b test1 -c -d -- test2 test3optstring定义了四个有效选项字母,a、b、c和d,冒号被放在了b后面,表示b选项需要一个参数值,当getopt命令运行时,它会检查提供的参数列表(
-a -b test1 -cd test2 test3
),并基于提供的optstring进行解析,它会自动将-cd
选项分为两个独立的选项,并插入双破折线来分隔行中的额外参数。
可以在脚本中使用getopt来格式化脚本所携带的任何命令行选项和参数,方法是用getopt命令生成的格式化后的版本来替换已有的命令行选项和参数,这可以通过set命令做到,set命令的选项之一是双破折线
--
,它会将命令行参数替换成set命令的命令行值:1set -- $(getopt -q ab:cd "$@")-q
选项表示如果指定了一个不在optstring中的选项,默认情况下,getopt命令会产生一条错误信息,指定了-q
选项后就可以忽略这条错误信息。现在原始的命令行参数变量的值会被getopt命令的输出替换:
123456789101112131415161718192021222324252627#!/bin/bash#Extract command line options & values with getopt#set -- $(getopt -q ab:cd "$@")#echowhile [ -n "$1" ]docase "$1" in-a) echo "Found the -a option" ;;-b) param="$2"echo "Found the -b option, with parameter value $param"shift ;;-c) echo "Found the -c option" ;;--) shiftbreak ;;*) echo "$1 is not an option";;esacshiftdone#count=1for param in "$@"doecho "Parameter #$count: $param"count=$[ $count + 1 ]done123$ ./test.sh -acFound the -a optionFound the -c option1234567$ ./test.sh -a -b test1 -cd test2 test3 test4Found the -a optionFound the -b option, with parameter value 'test1'Found the -c optionParameter #1: 'test2'Parameter #2: 'test3'Parameter #3: 'test4'getopt存在的一个问题就是当处理带空格和引号的参数值时,它会将空格当作参数分隔符,而不是根据双引号将二者当作一个参数,例如:
1./test.sh -a -b test1 -cd "test2 test3" test4123456Found the -a optionFound the -b option, with parameter value 'test1'Found the -c optionParameter #1: 'test2Parameter #2: test3'Parameter #3: 'test4'getopts一次只处理命令行上检测到的一个参数,处理完所有的参数后,它会退出并返回一个大于0的退出状态码,这让它非常适合用解析命令行所有参数的循环中:
getopts optstring variable
有效的选项字母都会列在optstring中,如果选项字母要求有个参数值,就加一个冒号,要去掉错误信息的话,可以在optstring之前加一个冒号,getopts命令会将当前参数保存在命令行中定义的variable中。
getopts命令会用到两个环境变量,如果选项要跟一个参数值,OPTARG环境变量就会保存这个值,OPTIND环境变量保存了参数列表中getopts正在处理的参数位置:
1234567891011#!/bin/bashechowhile getopts :ab:c optdocase "$opt" ina) echo "Found the -a option" ;;b) echo "Found the -b option, with value $OPTARG" ;;a) echo "Found the -c option" ;;*) echo "Unknown option: $opt" ;;esacdone1234$ ./test19.sh -ab test1 -cFound the -a optionFound the -b option, with value test1Found the -c option需要注意的是,getopts命令解析命令行选项时会移除开头的破折线,所以在case定义中不用单破折线。
getopts可以在参数中包含空格:
1$ ./test.sh -b "test1 test2" -a12Found the -b option, with value test1 test2Found the -a option选项字母和参数值放在一起使用,而不用加空格
1$ ./test.sh -abtest112Found the -a optionFound the -b option, with value test1getopts还能够将命令行上找到的所有未定义的选项统一输出成问号
1$ ./test19.sh -d1Unknown option: ?在getopts处理每个选项时,它会将OPTIND环境变量值增一。在getopts完成处理时,你可以使用shift命令和OPTIND值来移动参数。
12345678910111213141516171819202122#!/bin/bashechowhile getopts :ab:cd optdocase "$opt" ina) echo "Found the -a option" ;;b) echo "Found the -b option, with value $OPTARG;;c) echo "Found the -c option" ;;d) echo "Found the -d option" ;;*) echo "Unknown option: $opt" ;;esacdone#shift $[ OPTIND - 1 ]#echocount=1for param in "$@"doecho "Parameter $count: $param"count=$[ $count + 1 ]done12345678$ ./test.sh -a -b test1 -d test2 test3 test4Found the -a optionFound the -b option, with value test1Found the -d optionParameter 1: test2Parameter 2: test3Parameter 3: test4注意:OPTIND总是存储下一个要处理的元素位置,例如:
1234567891011#!/bin/bashechowhile getopts :ab:cd optdocase "$opt" ina) echo "a = $OPTIND" ;;b) echo "b = $OPTIND" ;;c) echo "c = $OPTIND" ;;d) echo "d = $OPTIND" ;;esacdone12345$ ./test.sh -a -b test1 -c -da = 2b = 4c = 5d = 6之所以会有上述输出是因为当处理命令行参数
-a
时,下一个要处理的参数是-b
,而-b
参数所在的位置为2,所以a = 2,当处理-b
时,下一个参数是test1,但test1不是命令行选项,所以跳过,因此下一个要处理的参数是-c
,而-c
参数所在的位置为4,后面几个输出的道理是一样的。我们看另外一种情况:
12345$ ./test.sh -ab test1 -c -da = 1b = 3c = 4d = 5之所以会有上述输出是因为当成处理命令行参数
-a
时,下一个要处理的参数是b,依然在处理第一个元素,因此a = 1,当处理b时,下一个参数是test1,但test1不是命令行选项,所以跳过,一次下一个要处理的参数是-c
,而-c
参数所在的位置为3,后面几个输出的道理是一样的。
read命令从标准输入(键盘)或另一个文件描述符中接受输入,在受到输入后,read命令会将数据放进一个变量:
1234#!/bin/bashecho -n "Enter your name: "read nameecho "Hello $name, welcome"123$./test.shEnter your name: GTPHello GTP, welcomeecho命令后面的
-n
选项表示不会在字符串末尾输出换行符,允许脚本用户紧跟其后输入数据,而不是下一行。
read命令包含了
-p
选项,允许直接在read命令行指定提示符:1234#!/bin/bashread -p "Please enter your age: " agedays=$[ age * 365 ]echo "That makes you over $days days old!"123$ ./test.shPlease enter your age: 10That makes you over 3650 days old!read命令会将姓和名保存在同一个变量中,read命令会将提示符后输入的所有数据分配给单个变量,要么你指定多个变量,输入的每个数据值都会分配给变量列表中的下一个变量,如果变量数量不够,剩下的数据就全部分配给最后一个变量:
123#!/bin/bashread -p "Enter your name: " first lastecho "Checking data for last, first"123$ ./test.shEnter your name: Rich BlumChecking data for Blum, Rich也可以在read命令中不指定变量,这样read命令会将它收到的任何数据都放进特殊环境变量REPLY中
1234#!/bin/bashread -p "Enter your name: "echoecho Hello $REPLY, welcome!123$./test.shEnter your name: GTPHello GTP, welcome!read命令可以通过-t选项指定一个计时器,指定了read命令等待输入的秒数,当计时器过期后,read命令会返回一个非零退出状态码:
12345678#!/bin/bashif read -t 5 -p "Please enter your name: " namethenecho "Hello $name, welcome!"elseechoecho "Sorry, too slow!"firead命令还可以统计输入的字符数,当输入的字符数达到预设的字符数时,就自动退出,将输入的数据赋给变量:
12345678910#!/bin/bshread -n1 -p "Do you want to continue [Y/N]? " answercase $answer inY | y) echoecho "fine, continue on..." ;;N | n) echoecho "OK, goodbye"exit ;;esacecho "This is the end of the script"-n1
选项告诉read命令在接受单个字符后退出,只要按下单个字符回答后,read命令就会接受输入并将它传给变量,无需按回车键。
read命令的
-s
选项可以避免在read命令中输入的数据显示在显示器上(实际上数据会被显示,只是read命令会将文本颜色设成跟背景色一样):1234#!/bin/bashread -s -p "Enter your password: " passechoecho "Is your password really $pass? "123$ ./test.shEnter your password:Is your password really T3stlng?这样输入提示符输入的数据不会出现在屏幕上,但会赋给变量。
read命令可以读取文件中保存的数据,每次调用read命令, 会从文件中读取一行文本,当文件中再没有内容时,read命令会退出并返回非零退出状态码,最常见的方法是对文件使用cat命令,将结果通过管道直接传给read命令的while命令:
12345678#!/bin/bashcount=1cat test | while read linedoecho "Line $count: $line"count=$[ $count + 1 ]doneecho "Finished procession the file"